home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Pencil_Factory_Defaul < prev    next >
Encoding:
Text File  |  2003-04-22  |  682 b   |  27 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for Pencil effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Pencil():
  14.     return {
  15.         'Color': (10, 10, 250),
  16.         'GeneralSettings': {
  17.             'AutoActionMode': 0,
  18.             'ExecutionMode': 0
  19.             },
  20.         'Intensity': 70,
  21.         'Luminance': 200,
  22.         'Blur': 7
  23.         }
  24.  
  25. def Do(Environment):
  26.     App.Do( Environment, 'Pencil', Preset_Pencil())
  27.